home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / DRAGON.ZIP / dragon / dragon.pov < prev    next >
Encoding:
Text File  |  1997-08-17  |  912 b   |  66 lines

  1. #include "colors.inc"
  2. #include "skies.inc"
  3. #include "textures.inc"
  4. #include "stones.inc"
  5.  
  6. global_settings { 
  7.    assumed_gamma 1.0
  8.    max_intersections 4096
  9. }
  10.  
  11.  
  12. light_source { <10 , 20, 10> color White }
  13. light_source { <30 , 5, 10> color White }
  14. light_source { <3 , 4, 15> color White }
  15. light_source { <0 , 20, 0> color White }
  16.  
  17. camera {
  18.   location <3 , 4, 15>
  19.   look_at  <3 , 4, 0>
  20. }
  21.  
  22. background { color SummerSky }
  23.  
  24. plane {
  25.    <0, 1, 0>, 0
  26.    texture {
  27.       pigment { checker pigment{Jade}, pigment{Blue_Agate} }
  28.       normal{
  29.          bozo 0.5
  30.       }
  31.       scale 7
  32.       rotate <0, 40, 0>
  33.    }
  34. }
  35.  
  36. #declare DRAGON_DEPTH = 6
  37.  
  38. object {
  39.    #include "dragon.inc"
  40.    texture {
  41.       T_Grnt17
  42.       finish{
  43.          ambient 0.2
  44.          diffuse 0.8
  45.          specular 0.6
  46.       }
  47.       normal{crackle 0.2
  48.          scale 0.08
  49.       }
  50.    }
  51.    rotate <50, 30, 0>
  52.    translate <0, 1.5, 0>
  53. }
  54.  
  55.  
  56. object {
  57. O_Cloud1
  58. }
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.